home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Files
/
Errors
/
NoSuchVolume.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
250b
|
19 lines
// NoSuchVolume.h
#ifndef NoSuchVolume_h
#define NoSuchVolume_h
#ifndef VolumeError_h
#include "VolumeError.h"
#endif
class NoSuchVolume: public VolumeError
{
public:
NoSuchVolume( OSErr error )
: VolumeError( error )
{}
};
#endif